home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 5-023 bas2com basic compiler / 1.img / BIG.BAT < prev    next >
DOS Batch File  |  1982-05-07  |  783b  |  21 lines

  1. REM  BIG.BAT can be used to compile and
  2. REM  link large BASIC programs.
  3. REM  This batch file requires the following:
  4. REM  .  a two-drive system
  5. REM  .  BASIC diskette in drive A:
  6. REM  .  work diskette in drive B:
  7. REM  .  runfile diskette for the .EXE file
  8. REM  .  BASCOM-Linker diskette for the link step
  9. REM  .  BIG.BAT on BASIC and BASCOM-Linker diskettes
  10. REM  To run this batch file respond to the DOS prompt with:
  11. REM         BIG progname parms
  12. PAUSE . . . begin the compilation
  13. B:
  14. A:BASCOM %1/O%2;
  15. PAUSE . . . insert BASCOM-Linker in drive A:
  16. REM  You will be prompted to change diskettes when the
  17. REM  linker is ready to generate the .EXE file. Replace the 
  18. REM  work diskette with the runfile diskette when prompted.
  19. A:LINK %1/p;
  20. REM  batch file complete
  21.